From 071bec075d7a70f30b927e0d60b1ba744ac3c5ba Mon Sep 17 00:00:00 2001 From: Jo-Philipp Wich Date: Sat, 7 Feb 2015 15:12:24 +0100 Subject: [PATCH] libtorrent: remove manual autoconf invocation The Makefile already uses the proper autoreconf fixup but leaves a manual autoconf invocation in place. The bad autoconf call leads to the following build error in the SDK: configure.ac:3: installing `./config.guess' configure.ac:3: installing `./config.sub' configure.ac:20: installing `./install-sh' configure.ac:20: installing `./missing' src/Makefile.am: installing `./depcomp' autoreconf: Leaving directory `.' aclocal... autoheader... libtoolize... libtoolize nor glibtoolize not found make[2]: *** [.../.configured_] Error 1 Remove the entire Build/Configure override to let libtorrent build correctly. Signed-off-by: Jo-Philipp Wich --- libs/libtorrent/Makefile | 5 ----- 1 file changed, 5 deletions(-) diff --git a/libs/libtorrent/Makefile b/libs/libtorrent/Makefile index 76cf04773b..3f906895d0 100644 --- a/libs/libtorrent/Makefile +++ b/libs/libtorrent/Makefile @@ -50,11 +50,6 @@ CONFIGURE_ARGS+= \ --enable-openssl \ --disable-instrumentation -define Build/Configure - ( cd $(PKG_BUILD_DIR); ./autogen.sh ); - $(call Build/Configure/Default) -endef - define Build/InstallDev $(INSTALL_DIR) $(1)/usr/include $(CP) $(PKG_INSTALL_DIR)/usr/include/torrent $(1)/usr/include/ -- 2.30.2